home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / libs / linux.wor / linux / usr / dict / README2.linux.words < prev    next >
Encoding:
Text File  |  1993-10-11  |  1.4 KB  |  30 lines

  1. #!/bin/sh -xe
  2. # README2.linux.words - second file used to create linux.words
  3. # Created: Sun Oct 10 18:50:53 1993 by faith@cs.unc.edu (Rik Faith)
  4. # Revised: Sun Oct 10 21:26:01 1993 by faith@cs.unc.edu
  5. #
  6.  
  7. # As noted in README.linux.words, extreme care was taken to be sure that
  8. # the linux.words list was free of copyright.  This was done so that
  9. # linux.words would be a suitable /usr/dict/words replacement for the Linux
  10. # community.  After the initial release of linux.words, Greg Alt
  11. # (galt@asylum.cs.utah.edu) and Josh Richardson (josh@gatelink.com) sent me
  12. # several short lists of words that were not in my original list.  They
  13. # obtained these lists by analyzing FAQs and online text material,
  14. # including the Federalist Papers.  The results were manually analyzed by
  15. # them before sending the lists to me.  In addition, I removed some words
  16. # which were not listed in The American Heritage Dictionary (Second College
  17. # Edition, Houghton Mifflin Co., 1991).  This method of obtaining words
  18. # (from documents, not from word lists) is also "safe" from the copyright
  19. # standpoint.  Therefore, I am merging these lists in with (version 1) of
  20. # linux.words to create the second version of linux.words.
  21.  
  22. # move version 1 list
  23. mv linux.words dict.4
  24.  
  25. # add in proper names (use sort twice to get uppercase before lowercase)
  26. cat dict.4 extra.words | sort | sort -df | uniq > linux.words
  27.  
  28. # clean up
  29. rm dict.4
  30.